var message // Contains the message associated with the Error object. By default, the value of this property is "Error". You can specify a message property when you create a new Error object by passing the error string to the Error constructor function.
var name // Contains the name of the Error object. By default, the value of this property is "Error".
function toString() // Returns the string "Error" by default, or the value contained in Error.message, if defined.